home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 43.zip / ANC 21.adf / g.doc < prev    next >
Text File  |  1988-01-19  |  965b  |  32 lines

  1.  
  2.    This is a VERY simple utility I felt I needed to study those nasty Viruses
  3. hanging around...
  4.    It converts a boot-block into an executable file, so you may use
  5.    your favorite debugger (Wack, Dis, ...) to study it.
  6.  
  7.    SYNTAX: xboot infile outfile
  8.  
  9.    CAVEATS:
  10.    <infile> should be exactly 1024 bytes long. It is normally the dump
  11.    of blocks 0 and 1 of a floppy disk.
  12.  
  13.    DETAILS:
  14.    The first three longwords of the boot-block are put in the second hunk
  15.    (data hunk).
  16.    All other data is thrown into the first hunk (code hunk).
  17.    This has the disadvantage of breaking the PC-relative adressing for
  18.    the data (like in ByteBandits virus).
  19.  
  20.    COMPILATION NOTES:
  21.    I used standard AmigaDOS file functions, so that you may compile with
  22.    amiga.lib before lc.lib, and have a smaller executable.
  23.  
  24.    DISTRIBUTION:
  25.       Free ! This a Public Domain. Do whatever you want with this program.
  26.  
  27.    AUTHOR:
  28.       Francois ROUAIX
  29.       rouaix@inria.inria.fr
  30.  
  31.  
  32.